home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / satellit / pacdoc / unixtime.h < prev    next >
C/C++ Source or Header  |  1993-04-15  |  279b  |  13 lines

  1. #ifndef _TIME_T_DEFINED
  2.     #include <time.h>
  3. #endif
  4.  
  5. #define time(x) unix_time(x)
  6. #define gmtime(x) unix_gmtime(x)
  7. #define mktime(x) unix_mktime(x)
  8.  
  9. double TimeVal(time_t);
  10. time_t unix_time(time_t *);
  11. time_t unix_mktime(struct tm *);
  12. struct tm * unix_gmtime(time_t *);
  13.